Addendum: You can also do that in the Linux command shell.
cd /opt/retropie/configs find -type f -newermt yesterday-type f lists only files, not directories.
-newermt yesterday shows only files whose modification time is newer than yesterday.
If you append -ls to the command, you'll get a more detailed output.
find -type f -newermt yesterday -lsSee here for more examples.